runtime.heapStatsDelta.smallFreeCount (field)

8 uses

	runtime (current package)
		metrics.go#L253: 				for i, count := range in.heapStats.smallFreeCount[1:] {
		metrics.go#L607: 		nf := a.smallFreeCount[i]
		mgcsweep.go#L745: 			atomic.Xadd64(&stats.smallFreeCount[spc.sizeclass()], int64(nfreed))
		mstats.go#L416: 		f := consStats.smallFreeCount[i]
		mstats.go#L679: 	smallFreeCount  [_NumSizeClasses]uint64 // number of frees for small objects (<=maxSmallSize)
		mstats.go#L703: 	for i := range b.smallFreeCount {
		mstats.go#L704: 		a.smallFreeCount[i] += b.smallFreeCount[i]